When an action is selected stop the event to be propagated otherwise the
authorMarco Pesenti Gritti <marco@gnome.org>
Mon, 8 Mar 2004 14:26:31 +0000 (14:26 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Mon, 8 Mar 2004 14:26:31 +0000 (14:26 +0000)
2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>

        * gtk/gtkentry.c: (gtk_entry_completion_key_press):

        When an action is selected stop the event to be propagated
        otherwise the activate signal is emitted too. (Bug #133394)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkentry.c

index 88a11280e916f9f716e40658cbeff3449cb44f44..0eb4d61e93d33fbb11ce03fd80f204c876221ba2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
+
+       * gtk/gtkentry.c: (gtk_entry_completion_key_press):
+
+       When an action is selected stop the event to be propagated
+       otherwise the activate signal is emitted too. (Bug #133394)
+
 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
index 88a11280e916f9f716e40658cbeff3449cb44f44..0eb4d61e93d33fbb11ce03fd80f204c876221ba2 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
+
+       * gtk/gtkentry.c: (gtk_entry_completion_key_press):
+
+       When an action is selected stop the event to be propagated
+       otherwise the activate signal is emitted too. (Bug #133394)
+
 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
index 88a11280e916f9f716e40658cbeff3449cb44f44..0eb4d61e93d33fbb11ce03fd80f204c876221ba2 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
+
+       * gtk/gtkentry.c: (gtk_entry_completion_key_press):
+
+       When an action is selected stop the event to be propagated
+       otherwise the activate signal is emitted too. (Bug #133394)
+
 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
index 88a11280e916f9f716e40658cbeff3449cb44f44..0eb4d61e93d33fbb11ce03fd80f204c876221ba2 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
+
+       * gtk/gtkentry.c: (gtk_entry_completion_key_press):
+
+       When an action is selected stop the event to be propagated
+       otherwise the activate signal is emitted too. (Bug #133394)
+
 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
index 88a11280e916f9f716e40658cbeff3449cb44f44..0eb4d61e93d33fbb11ce03fd80f204c876221ba2 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
+
+       * gtk/gtkentry.c: (gtk_entry_completion_key_press):
+
+       When an action is selected stop the event to be propagated
+       otherwise the activate signal is emitted too. (Bug #133394)
+
 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
index 9d5509497602b92309f1d5b6435a28c2d5d86fd1..2ef7b50a49777b78b6dfadc135924390addcceb5 100644 (file)
@@ -4844,6 +4844,8 @@ gtk_entry_completion_key_press (GtkWidget   *widget,
           g_signal_emit_by_name (completion, "action_activated",
                                  gtk_tree_path_get_indices (path)[0]);
           gtk_tree_path_free (path);
+
+          return TRUE;
         }
     }